Micron Document
🌎 rns.kin.earth git 🌍

Node / dev / reticulum / commits / 954567c

Commit 954567c581f63b20b85863f1ecf2fa3044d64ebe


Parents : 77a1bb9
Author : Mark Qvist <bc7291552be7a58f361522990465165c>
Signature : T66BB85Valid, signed by author
Date : 2026-08-19T18:06:17+02:00

Allow disabling link MTU discovery

Changes

1 files changed, 2 insertions(+), 1 deletions(-)


Diff

diff --git a/RNS/Reticulum.py b/RNS/Reticulum.py
index 428085ab..c699cc1e 100755
--- a/RNS/Reticulum.py
+++ b/RNS/Reticulum.py
@@ -540,7 +540,8 @@ class Reticulum:
if option == "link_mtu_discovery":
v = self.config["reticulum"].as_bool(option)
- if v == True: Reticulum.__link_mtu_discovery = True
+ if v == True: Reticulum.__link_mtu_discovery = True
+ elif v == False: Reticulum.__link_mtu_discovery = False
if option == "enable_remote_management":
v = self.config["reticulum"].as_bool(option)

Served by rngit 1.5.2 - Generated in 0.03s